home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-02 / eg0519s.zip / MAKEFILE < prev    next >
Text File  |  1993-01-04  |  1KB  |  43 lines

  1. #
  2. # Copyright 1989, 1990 Eric Ng
  3. #
  4. # This program is free software; you can redistribute it and/or modify
  5. # it under the terms of the GNU General Public License as published by
  6. # the Free Software Foundation; either version 1, or (at your option)
  7. # any later version.
  8. #
  9. # This program is distributed in the hope that it will be useful, but
  10. # without any warranty whatsoever, without even the implied warranties
  11. # of merchantability or fitness for a particular purpose.  See the
  12. # accompanying GNU General Public License for more details.
  13. #
  14. # You should have received a copy of the GNU General Public License
  15. # along with this program; see the file COPYING.  If not, write to:
  16. #
  17. # Free Software Foundation, Inc.
  18. # 675 Massachusetts Avenue
  19. # Cambridge, Massachusetts 02139
  20. #
  21.  
  22. # Makefile for egaint 0.94.13 (for use with Turbo Make 2.0)
  23. egaint.exe: eg9413.pas driver.tpu fonts.tpu
  24.     tpc /m eg9413.pas
  25.     copy egaint.exe eg.exe        # all this because I've been
  26.     copy eg9413.exe egaint.exe    # having problems using rename
  27.     erase eg9413.exe        # with Turbo Make 2.0
  28.  
  29. fonts.tpu: fonts.pas sans.obj litt.obj
  30.     tpc fonts.pas
  31. sans.obj: sans.chr
  32.     binobj sans.chr sans.obj SansSerifFontProc
  33. litt.obj: litt.chr
  34.     binobj litt.chr litt.obj SmallFontProc
  35.  
  36. driver.tpu: driver.pas egavga.obj herc.obj
  37.     tpc driver.pas
  38. egavga.obj: egavga.bgi
  39.     binobj egavga.bgi egavga.obj EgaVgaDriver
  40. herc.obj: herc.bgi
  41.     binobj herc.bgi herc.obj HercDriver
  42.  
  43.